HTMLify
index.html
Views: 24 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Update CSS</title> <link rel="stylesheet" href="style.css" /> </head> <body> <div class="container"> <div class="controls"> <label for="spacing">Spacing:</label> <input type="range" id="spacing" name="spacing" min="10" max="200" value="10" /> <label for="blur">Blur:</label> <input type="range" id="blur" name="blur" min="0" max="25" value="10" /> <label for="base">Color:</label> <input type="color" id="base" name="base" value="#ffc600" /> </div> <img src="https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1174&q=80" /> </div> <script src="app.js"></script> </body> </html> |